home *** CD-ROM | disk | FTP | other *** search
- /* BORDER.H Border is the Frame around future "window" with Header
- in the top of it. Always in "text" coordinates
- */
-
- #ifndef __BORDER_H_
- #define __BORDER_H_
-
- #include "header.h"
- #include "frame.h"
- #include "output.h"
-
- class Border : public Frame, public Header
- {
- public:
- Border(rect coordinates, char* h, BORDERS b_type = STANDART_BORDER,
- BORDERS hdr_b_type = STANDART_BORDER, int s = 3, int pat = 0);
-
- void show();
- void hilite();
- void unhilite();
- void set_header(char* h);
- void set_type(BORDERS type);
- };
-
- #endif __BORDER_H_
-